* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* HERO SECTION */
.simple-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* BREADCRUMB */
.breadcrumb-bar {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 16px 25px;
    font-size: 18px;
    z-index: 10;
}

.breadcrumb-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-bar span {
    margin: 0 5px;
}

.hero-img {
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

/* TEXT CENTER */
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 180px 20px 0px;
    background: rgba(0, 0, 0, 0.55); /* light overlay */
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff7a2f;
}

.hero-text p {
    font-size: 35px;
    font-weight: 400;
    max-width: 90%;
}

/* Images */
.hero-1 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-2 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-3 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}

/* Responsive */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .breadcrumb-bar {
        font-size: 12px;
        left: 15px;
        bottom: 15px;
    }
}

/* ================= ARROWS ================= */
.custom-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff7a2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-arrow:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 122, 47, 0.6);
}

/* Position Fix */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Run Specific Styles */

/* Partner Institutions Grid and Card Styles */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.partner-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(44, 44, 44, 0.04);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.partner-card:hover {
    box-shadow:
        0 8px 32px 0 rgba(255, 122, 47, 0.13),
        0 4px 16px 0 rgba(215, 38, 167, 0.13);
    transform: translateY(-4px) scale(1.03);
}
.partner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(120deg, #d726a7 0%, #a259f7 60%, #ff7a2f 100%);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(215, 38, 167, 0.1);
}
.partner-name {
    font-weight: 700;
    color: #181c24;
    font-size: 1.15rem;
    text-align: center;
}
/* Pink-Orange Highlight Card (e.g. Chief Guest) */
.highlight-card {
    background: linear-gradient(120deg, #ffe6f7 60%, #f5eaff 100%);
    border-radius: 1.3rem;
    padding: 1.6rem 2rem 1.2rem 2rem;
    box-shadow: 0 2px 16px 0 rgba(215, 38, 167, 0.07);
    color: #23272a;
    margin-bottom: 1.5rem;
    min-width: 260px;
    max-width: 420px;
    border: 1.5px solid #f7c6e6;
}
.highlight-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d726a7;
}
.highlight-title .fa-star {
    color: #ff7a2f;
    font-size: 1.2rem;
}
.highlight-subtitle {
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.highlight-desc {
    color: #6a6a6a;
    font-size: 1rem;
}
body {
    background: #fff;
}
.mission-card-pink {
    background: linear-gradient(120deg, #ffe6f7 80%, #ffd6e9 100%);
    border-color: #f7c6e6;
}
.mission-card-purple {
    background: linear-gradient(120deg, #f5eaff 80%, #e6d6ff 100%);
    border-color: #e0c6f7;
}
.mission-card-blue {
    background: linear-gradient(120deg, #eaf1ff 80%, #d6eaff 100%);
    border-color: #c6e6f7;
}
/* Mission Cards Pink/Orange Styling */
.mission-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 2.5rem 0 3.5rem 0;
    flex-wrap: wrap;
    overflow: hidden;
}
.mission-card {
    background: linear-gradient(120deg, #ffe6f7 60%, #fff7f0 100%);
    border: 2px solid #d726a7;
    border-radius: 1.5rem;
    box-shadow:
        0 4px 24px 0 rgba(255, 122, 47, 0.1),
        0 2px 8px 0 rgba(215, 38, 167, 0.1);
    padding: 2.2rem 2rem 1.5rem 2rem;
    max-width: 350px;
    min-width: 260px;
    flex: 1 1 300px;
    position: relative;
    transition:
        box-shadow 0.2s,
        border-color 0.2s;
}
.mission-card:hover {
    border-color: #ff7a2f;
    box-shadow:
        0 8px 32px 0 rgba(255, 122, 47, 0.18),
        0 4px 16px 0 rgba(215, 38, 167, 0.18);
}
.mission-card .run-hero-icon {
    margin-bottom: 1.2rem;
}
.mission-card h3 {
    color: #23272a;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.mission-card p {
    color: #3a3a3a;
    font-size: 1.05rem;
}
.high-sec {
    overflow: hidden;
}
/* Event Impact Section Pink/Orange Gradient */
.event-impact-section {
    background: linear-gradient(100deg, #ff4f9c 0%, #ff7a2f 100%);
    color: #fff;
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
    border-radius: 2rem;
    margin: 3rem 0 2rem 0;
    box-shadow: 0 2px 24px 0 rgba(255, 79, 156, 0.08);
    overflow: hidden;
}
.event-impact-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.event-impact-section p {
    font-size: 1.18rem;
    color: #fff;
    opacity: 0.92;
}

.event-impact-stats {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6vw;
    margin: 3.5rem 0 1.5rem 0;
    flex-wrap: wrap;
}
.event-impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}
.event-impact-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}
.event-impact-label {
    font-size: 1.15rem;
    color: #fff;
    opacity: 0.95;
    font-weight: 500;
}

@media (max-width: 900px) {
    .event-impact-stats {
        gap: 2.5vw;
        margin: 2.2rem 0 1.2rem 0;
    }
    .event-impact-number {
        font-size: 2.1rem;
    }
    .event-impact-label {
        font-size: 1rem;
    }
}

.run-hero-section {
    background: linear-gradient(120deg, #ffe6f7 0%, #fff7f0 100%);
    padding: 60px 0 40px 0;
    overflow: hidden;
}

/* Section header with pink-orange gradient */
.run-section-header {
    background: linear-gradient(90deg, #d726a7 0%, #ff7a2f 100%);
    color: #fff;
    padding: 2rem 0 1.2rem 0;
    border-radius: 1.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Pink and Orange Accent for Section Background */
.run-hero-section {
    background: linear-gradient(120deg, #ffe6f7 0%, #fff7f0 100%);
}

/* Pink and Orange Shadow/Accent for Card (for extra pop) */
.run-hero-image-card::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #d726a7 0%, #ff7a2f 100%);
    border-radius: 2rem;
    z-index: 0;
    filter: blur(18px);
    opacity: 0.13;
    pointer-events: none;
}

/* Card border and shadow accent */
.run-hero-image-card {
    border: 2px solid #d726a7;
    box-shadow:
        0 4px 24px 0 rgba(255, 122, 47, 0.1),
        0 2px 8px 0 rgba(215, 38, 167, 0.1);
    transition:
        box-shadow 0.2s,
        border-color 0.2s;
}
.run-hero-image-card:hover {
    border-color: #ff7a2f;
    box-shadow:
        0 8px 32px 0 rgba(255, 122, 47, 0.18),
        0 4px 16px 0 rgba(215, 38, 167, 0.18);
}

.run-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 2.5rem;
}

.run-hero-content {
    flex: 1 1 40%;
    min-width: 320px;
}

.run-hero-badge {
    background: #ffe6f7;
    color: #d726a7;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1.5px solid #f7c6e6;
}

.run-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #23272a;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.run-hero-title-highlight {
    color: #d726a7;
    font-weight: 800;
    display: block;
    font-size: 3.2rem;
    background: linear-gradient(90deg, #d726a7 40%, #ff7a2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add orange accent to main title */
.run-hero-title {
    border-left: 8px solid #ff7a2f;
    padding-left: 1rem;
}

.run-hero-desc {
    font-size: 1.18rem;
    color: #3a3a3a;
    margin-bottom: 2.2rem;
    max-width: 600px;
}

.run-hero-stats {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.run-hero-stat {
    background: #fff;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.6rem 1.5rem;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    border: 1.5px solid #f7c6e6;
    gap: 0.5rem;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(215, 38, 167, 0.04);
}
.run-hero-stat-pink {
    color: #d726a7;
    border-color: #f7c6e6;
}
.run-hero-stat-orange {
    color: #ff7a2f;
    border-color: #ffe0c2;
}
.run-hero-stat {
    background: linear-gradient(90deg, #ffe6f7 60%, #fff7f0 100%);
}
.run-hero-stat:hover {
    box-shadow:
        0 4px 16px 0 rgba(255, 122, 47, 0.13),
        0 2px 8px 0 rgba(215, 38, 167, 0.13);
    border-color: #d726a7;
}
.run-hero-stat .fa-users {
    color: #d726a7;
}
.run-hero-stat .fa-location-dot {
    color: #ff7a2f;
}

.run-hero-image-wrap {
    flex: 1 1 50%;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.run-hero-image-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(215, 38, 167, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    z-index: 1;
}
.run-hero-image {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
}

/* Icon color accent for cards */
.run-hero-icon {
    color: #d726a7;
    background: #fff0f7;
    border-radius: 50%;
    padding: 0.7rem;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    border: 2px solid #ff7a2f;
    display: inline-block;
}
.run-hero-pink-blur {
    position: absolute;
    top: 18px;
    right: -18px;
    width: 100px;
    height: 30px;
    background: #d726a7;
    border-radius: 1.5rem;
    filter: blur(18px);
    opacity: 0.18;
    z-index: 0;
}
.run-hero-orange-blur {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 120px;
    height: 30px;
    background: #ff7a2f;
    border-radius: 1.5rem;
    filter: blur(18px);
    opacity: 0.18;
    z-index: 0;
}

@media (max-width: 900px) {
    .run-hero-container {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    .run-hero-content,
    .run-hero-image-wrap {
        min-width: 0;
        width: 100%;
    }
    .run-hero-title,
    .run-hero-title-highlight {
        font-size: 2.2rem;
    }
    .run-section-header {
        font-size: 1.5rem;
        padding: 1.2rem 0 0.8rem 0;
    }
}
